home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / progs / DIRECTOR / data.z / Director.rsr / STR#_480.txt < prev    next >
Encoding:
Text File  |  1997-07-25  |  17.7 KB  |  1,369 lines

  1. the perFrameHook
  2.  
  3. {object}(mPut, whichElement, value)
  4.  
  5. {object}(mNew, argument1, argument2,...)
  6.  
  7. {object}(mGet, whichElement)
  8.  
  9. method {methodname}
  10.  
  11. method mAtFrame
  12.  
  13. window {whichWindow}
  14.  
  15. voidp({variableName})
  16.  
  17. tell {object} to statement
  18.  
  19. symbolp({expression})
  20.  
  21. symbol({value})
  22.  
  23. random({n})
  24.  
  25. the randomSeed
  26.  
  27. put {expression} into variableOrChunkExpression
  28.  
  29. put {expression}
  30.  
  31. pictureP{whichCastMember}
  32.  
  33. pass
  34.  
  35. param({whichParameter})
  36.  
  37. the paramCount
  38.  
  39. on
  40.  
  41. min({value1}, value2,...)
  42.  
  43. max({value1}, value2,...)
  44.  
  45. on EvalScript
  46.   {}
  47. end EvalScript
  48.  
  49. on idle
  50.   {}
  51. end idle
  52.  
  53. halt
  54.  
  55. field {whichField}
  56.  
  57. else
  58.  
  59. dontPassEvent
  60.  
  61. the alertHook
  62.  
  63. on alertHook me, type, message
  64.   {}
  65. end alertHook
  66.  
  67. FALSE
  68.  
  69. TRUE
  70.  
  71. not
  72.  
  73. or
  74.  
  75. and
  76.  
  77. tan({x})
  78.  
  79. sqrt({x})
  80.  
  81. sin({x})
  82.  
  83. power({base}, exponent)
  84.  
  85. pi()
  86.  
  87. {integer1} mod integer2
  88.  
  89. log({x})
  90.  
  91. integerP({expression})
  92.  
  93. integer({expression})
  94.  
  95. floatP({expression})
  96.  
  97. float({expression})
  98.  
  99. exp({x})
  100.  
  101. cos({x})
  102.  
  103. atan({x})
  104.  
  105. abs({x})
  106.  
  107. =
  108.  
  109. <>
  110.  
  111. <=
  112.  
  113. <
  114.  
  115. >=
  116.  
  117. >
  118.  
  119. /
  120.  
  121. +
  122.  
  123. *
  124.  
  125. ({expression})
  126.  
  127. -
  128.  
  129. word {firstWord} to lastWord of ChunkExpression
  130.  
  131. word {whichWord} of chunkExpression
  132.  
  133. value({string})
  134.  
  135. TAB
  136.  
  137. string ({expression})
  138.  
  139. stringP({expression})
  140.  
  141. {string1} starts string2
  142.  
  143. SPACE
  144.  
  145. RETURN
  146.  
  147. QUOTE
  148.  
  149. put {expression} before chunkExpression
  150.  
  151. put {expression} after chunkExpression
  152.  
  153. offset({lookForString}, inString)
  154.  
  155. numtochar({n})
  156.  
  157. the number of words in {chunkExpression}
  158.  
  159. the number of lines in {chunkExpression}
  160.  
  161. the number of items in {chunkExpression}
  162.  
  163. the number of chars in {chunkExpression}
  164.  
  165. line {firstLine} to lastLine of chunkExpression
  166.  
  167. line {whichLine} of chunkExpression
  168.  
  169. length({string})
  170.  
  171. the last {chunkType} in chunkExpression
  172.  
  173. item {firstItem} to lastItem of chunkExpression
  174.  
  175. item {whichItem} of chunkExpression
  176.  
  177. the itemDelimiter
  178.  
  179. hilite {chunkExpression}
  180.  
  181. ENTER
  182.  
  183. EMPTY
  184.  
  185. do {scriptString}
  186.  
  187. delete {chunkExpression}
  188.  
  189. {stringExpression1} contains stringExpression2
  190.  
  191. char {firstCharacter} to lastCharacter of chunkExpression
  192.  
  193. char {whichCharacter} of chunkExpression
  194.  
  195. charToNum({expression})
  196.  
  197. chars({stringexpression}, firstCharacter, lastCharacter)
  198.  
  199. BACKSPACE
  200.  
  201. alert {message}
  202.  
  203. "{string}"
  204.  
  205. &&
  206.  
  207. &
  208.  
  209. VOID
  210.  
  211. ¬
  212.  
  213.  
  214. --
  215.  
  216. #{symbol name}
  217.  
  218. set {variableOrProperty}to expression
  219.  
  220. showLocals
  221.  
  222. showGlobals
  223.  
  224. clearGlobals
  225.  
  226. global {variable 1}, variable 2, ...
  227.  
  228. while
  229.  
  230. return {expression}
  231.  
  232. the result
  233.  
  234. nothing
  235.  
  236. next repeat
  237.  
  238. exit repeat
  239.  
  240. repeat with {variable} in list
  241. statement
  242. end repeat
  243.  
  244. repeat with {variable}= startValue down to endValue
  245. statement
  246. end repeat
  247.  
  248. repeat with {variable}= startValue to endValue
  249. statement
  250. end repeat
  251.  
  252. repeat while {testcondition}
  253. statement
  254. end repeat
  255.  
  256. if {expression} then
  257. else if expression then
  258. end if
  259.  
  260. if {expression} then
  261. else
  262. end if
  263.  
  264. if {expression} then 
  265.  
  266. otherwise {statement}
  267.  
  268. case {expression} of
  269. end case
  270.  
  271. exit
  272.  
  273. abort
  274.  
  275. [{listContents}]
  276.  
  277. sort {list}
  278.  
  279. setaProp {list}, property, value
  280.  
  281. setProp {list}, property, value
  282.  
  283. setAt {list}, position, value
  284.  
  285. listP({item})
  286.  
  287. list({value1}, value2,...)
  288.  
  289. ilk({item}, type)
  290.  
  291. getPropAt({list}, index)
  292.  
  293. getProp({list}, property)
  294.  
  295. getPos({list}, value)
  296.  
  297. getOne({list}, value)
  298.  
  299. getLast({list})
  300.  
  301. getAt({list}, position)
  302.  
  303. getaProp({list}, positionORproperty)
  304.  
  305. findPosNear({list}, property)
  306.  
  307. findPos({list}, property)
  308.  
  309. duplicate({list})
  310.  
  311. deleteProp {list}, property
  312.  
  313. deleteOne {list},value
  314.  
  315. deleteAt {list}, position
  316.  
  317. count({list})
  318.  
  319. append {list}, value
  320.  
  321. addProp {list}, property, value
  322.  
  323. addAt {list}, position, value
  324.  
  325. add {list}, value
  326.  
  327. xtra {whichXtra}
  328.  
  329. the number of xtras
  330.  
  331. the name of Xtra {whichXtra}
  332.  
  333. {object}(mRespondsTo, Message)
  334.  
  335. {object}(mPerform, message, argument1, argument2, ...)
  336.  
  337. {object}(mName)
  338.  
  339. mMessageList({object})
  340.  
  341. {object}(mInstanceRespondsTo, message)
  342.  
  343. {object}(mDispose)
  344.  
  345. {object}(mDescribe)
  346.  
  347. the spriteNum of me
  348.  
  349. sendSprite({whichSprite}, message, args...)
  350.  
  351. sendAllSprites({message}, args...)
  352.  
  353. the scriptInstanceList of  sprite
  354.  
  355. on runPropertyDialog
  356.   {}
  357. end runPropertyDialog
  358.  
  359. property
  360.  
  361. objectp({expression})
  362.  
  363. new(script {parentScriptName})
  364.  
  365. me
  366.  
  367. on getPropertyDescriptionList
  368.   {}
  369. end getPropertyDescriptionList
  370.  
  371. on getBehaviorDescription
  372.   {}
  373. end getBehaviorDescription
  374.  
  375. callAncestor(#{handlerName}, whichObject, args...)
  376.  
  377. call(#{handlerName}, whichObject, args...)
  378.  
  379. ancestor
  380.  
  381. the actorList
  382.  
  383. on zoomWindow
  384.   {}
  385. end zoomWindow
  386.  
  387. on resizeWindow
  388.   {}
  389. end resizeWindow
  390.  
  391. on openWindow
  392.   {}
  393. end openWindow
  394.  
  395. on moveWindow
  396.   {}
  397. end moveWindow
  398.  
  399. on deactivateWindow
  400.   {}
  401. end deactivateWindow
  402.  
  403. on closeWindow
  404.   {}
  405. end closeWindow
  406.  
  407. on activateWindow
  408.   {}
  409. end activateWindow
  410.  
  411. the windowType of window  {whichWindow}
  412.  
  413. the windowList
  414.  
  415. the visible of  {whichWindow}
  416.  
  417. the title of window {whichWindow}
  418.  
  419. the titleVisible of window  {whichWindow}
  420.  
  421. the sourceRect of window  {whichWindow}
  422.  
  423. the rect of window {whichWindow}
  424.  
  425. the name of window {whichWindow}
  426.  
  427. the modal of window {whichWindow}
  428.  
  429. the frontWindow
  430.  
  431. the fileName of window {whichWindow}
  432.  
  433. the drawRect of window {whichWindow}
  434.  
  435. the activeWindow
  436.  
  437. windowPresent({whichWindow})
  438.  
  439. open window {whichWindow}
  440.  
  441. moveToFront {whichWindow}
  442.  
  443. moveToBack {whichWindow}
  444.  
  445. forget window {whichWindow}
  446.  
  447. close window {whichWindow}
  448.  
  449. XFactoryList({whichLibrary})
  450.  
  451. sound playFile {whichChannel}, whichFile
  452.  
  453. showXLib
  454.  
  455. showResFile
  456.  
  457. setPref
  458.  
  459. the searchPath
  460.  
  461. the searchCurrentFolder
  462.  
  463. the pathName
  464.  
  465. open {whichApplication}
  466.  
  467. openXLib {whichFile}
  468.  
  469. openResFile {whichFile}
  470.  
  471. the moviePath
  472.  
  473. importFileInto member {whichCastMember}, filename
  474.  
  475. getPref
  476.  
  477. getNthFileNameinFolder({folderPath}, fileNumber)
  478.  
  479. the fileName of member {whichCastMember}
  480.  
  481. the fileName of castLib {whichCast}
  482.  
  483. copyToClipboard member {whichMember}
  484.  
  485. closeXLib {whichFile}
  486.  
  487. closeResFile {whichFile}
  488.  
  489. the applicationPath
  490.  
  491. @
  492.  
  493. the shapeType of member {whichCastMember}
  494.  
  495. the pattern of member {whichCastMember}
  496.  
  497. the lineSize of member {whichCastMember}
  498.  
  499. the filled of member {whichCastMember}
  500.  
  501. the hilite of member {whichCastMember}
  502.  
  503. the checkBoxType
  504.  
  505. the checkBoxAccess
  506.  
  507. the buttonType of member {whichCastMember}
  508.  
  509. the buttonStyle
  510.  
  511. the time
  512.  
  513. the ticks
  514.  
  515. short
  516.  
  517. long
  518.  
  519. the date
  520.  
  521. abbreviated
  522.  
  523. the script of menuItem {whichItem} of menu whichmenu
  524.  
  525. the number of menus
  526.  
  527. the number of menuItems of menu {whichmenu}
  528.  
  529. the _name of menu {whichMenu}
  530.  
  531. the name of menuItem {whichItem} of menu whichmenu
  532.  
  533. menu : {whichmenu}
  534.  
  535. installMenu {whichCastMember}
  536.  
  537. the enabled of menuItem {whichItem} of menu whichMenu
  538.  
  539. the checkMark of menuItem {whichItem} of menu whichMenu
  540.  
  541. the scoreSelection
  542.  
  543. the score 
  544.  
  545. the updateLock
  546.  
  547. updateFrame
  548.  
  549. insertFrame
  550.  
  551. endRecording
  552.  
  553. duplicateFrame
  554.  
  555. deleteFrame
  556.  
  557. clearFrame
  558.  
  559. beginRecording
  560.  
  561. stopEvent
  562.  
  563. on prepareFrame
  564.  
  565. on endSprite
  566.  
  567. on beginSprite
  568.  
  569. the currentSpriteNum
  570.  
  571. puppetTransition {whichTransition}, time, chunkSize, changeArea
  572.  
  573. puppetTempo {framesPerSecond}
  574.  
  575. puppetPalette {whichPalette}, speed, frames
  576.  
  577. marker({n})
  578.  
  579. label({whichLabel})
  580.  
  581. the frame
  582.  
  583. the frameTransition
  584.  
  585. the frameTempo
  586.  
  587. the frameSound2
  588.  
  589. the frameSound1
  590.  
  591. the frameScript
  592.  
  593. the framePalette
  594.  
  595. the frameLabel
  596.  
  597. on exitFrame
  598.   {}
  599. end exitFrame
  600.  
  601. on enterFrame
  602.   {}
  603. end enterFrame
  604.  
  605. union rect {rect1}, rect2
  606.  
  607. rect({left}, top, right, bottom)
  608.  
  609. point({horizontal}, vertical)
  610.  
  611. offset({rectangle}, horizontalChange, VerticlaChange)
  612.  
  613. map({targetPoint}, sourceRect, destinationRect)
  614.  
  615. map({targetRect}, sourceRect, destinationRect)
  616.  
  617. intersect({rectangle1}, rectangle2)
  618.  
  619. inside({point}, rectangle)
  620.  
  621. inflate({rectangle}, widthChange, heightChange)
  622.  
  623. the width of sprite {whichSprite}
  624.  
  625. the visible of sprite {whichSprite}
  626.  
  627. updateStage
  628.  
  629. the tweened of sprite {whichSprite}
  630.  
  631. the type of sprite {whichSprite}
  632.  
  633. the trails of sprite {whichSprite}
  634.  
  635. the top of sprite {whichSprite}
  636.  
  637. the stretch of sprite {whichSprite}
  638.  
  639. the stopTime of sprite {whichSprite}
  640.  
  641. the startTime of sprite {whichSprite}
  642.  
  643. sprite {sprite1} within sprite2
  644.  
  645. sprite {sprite1} intersects sprite2
  646.  
  647. sprite {whichSprite}
  648.  
  649. the scoreColor of sprite {whichSprite}
  650.  
  651. the scriptNum of sprite {whichSprite}
  652.  
  653. the right of sprite {whichSprite}
  654.  
  655. the rect of sprite {whichSprite}
  656.  
  657. puppetSprite {whichSprite}, trueOrFalse
  658.  
  659. the puppet of sprite {whichSprite}
  660.  
  661. the moveableSprite of sprite {whichSprite}
  662.  
  663. the memberNum of sprite {whichSprite}
  664.  
  665. the member of sprite {whichSprite}
  666.  
  667. the locV of sprite {whichSprite}
  668.  
  669. the locH of sprite {whichSprite}
  670.  
  671. the loc of sprite {whichSprite}
  672.  
  673. the lineSize of sprite {whichSprite}
  674.  
  675. the left of sprite {whichSprite}
  676.  
  677. the ink of sprite {whichSprite}
  678.  
  679. the height of sprite {whichSprite}
  680.  
  681. the foreColor of sprite {whichSprite}
  682.  
  683. the editable of sprite {whichSprite}
  684.  
  685. the cursor of sprite {whichSprite}
  686.  
  687. constrainV({whichsprite}, value)
  688.  
  689. the constraint of sprite {whichSprite}
  690.  
  691. constrainH({whichsprite}, value)
  692.  
  693. the castLibNum of sprite {whichSprite}
  694.  
  695. the bottom of sprite {whichSprite}
  696.  
  697. the blend of sprite {whichSprite}
  698.  
  699. the backColor of sprite {whichSprite}
  700.  
  701. the volume of member {whichMember}
  702.  
  703. the URL of member {whichMember}
  704.  
  705. the tracking of sprite {whichSprite}
  706.  
  707. stop member {whichMember}
  708.  
  709. the streamName of member {whichMember}
  710.  
  711. the state of member {whichMember}
  712.  
  713. the soundChannel of member {whichMember}
  714.  
  715. the sampleRate of member {whichCastMember}
  716.  
  717. the preloadTime of member {whichMember}
  718.  
  719. preloadBuffer member {whichMember}
  720.  
  721. play member {whichMember}
  722.  
  723. the percentPlayed of member {whichMember}
  724.  
  725. the percentStreamed of member {whichMember}
  726.  
  727. pause member {whichMember}
  728.  
  729. the numChannels of member {whichMember}
  730.  
  731. getErrorString
  732.  
  733. getError
  734.  
  735. the enabled of sprite {whichSprite}
  736.  
  737. the enabled of member {whichMember}
  738.  
  739. the duration of member
  740.  
  741. the copyrightInfo of member {whichMember}
  742.  
  743. the bitsPerSample of member {whichMember}
  744.  
  745. the bitRate of member {whichMember}
  746.  
  747. the volume of sound {whichChannel}
  748.  
  749. sound stop {whichChannel}
  750.  
  751. sound playFile {whichChannel}, whichFile
  752.  
  753. sound fadeOut {whichChannel}
  754.  
  755. sound fadeIn {whichChannel}
  756.  
  757. sound close {whichChannel}
  758.  
  759. the soundLevel
  760.  
  761. the soundEnabled
  762.  
  763. soundBusy({whichChannel})
  764.  
  765. the sampleSize of member {whichCastMember}
  766.  
  767. the sampleRate of member {whichCastMember}
  768.  
  769. puppetSound {whichCastMember}
  770.  
  771. the multiSound
  772.  
  773. the currentTime of sound {whichChannel}
  774.  
  775. the channelCount of member {whichCastMember}
  776.  
  777. the beepOn
  778.  
  779. beep {numberOfTimes}
  780.  
  781. trackType(sprite {whichSprite}, whichTrack)
  782.  
  783. trackText(sprite {whichSprite}, whichTrack)
  784.  
  785. trackStopTime(sprite {whichSprite}, whichTrack)
  786.  
  787. trackStartTime(sprite {whichSprite}, whichTrack)
  788.  
  789. trackPreviousSampleTime(sprite {whichSprite}, whichTrack)
  790.  
  791. trackPreviousKeyTime(sprite {whichSprite}, whichTrack)
  792.  
  793. trackNextSampleTime(sprite {whichSprite}, whichTrack)
  794.  
  795. trackNextKeyTime(sprite {whichSprite}, whichTrack)
  796.  
  797. trackEnabled(sprite {whichSprite}, whichTrack)
  798.  
  799. trackCount(sprite {whichSprite})
  800.  
  801. setTrackEnabled(sprite {whichSprite}, whichTrack, onOrOff)
  802.  
  803. the volume of sprite {whichSprite}
  804.  
  805. the movieTime of sprite {whichSprite}
  806.  
  807. the movieRate of sprite {whichSprite}
  808.  
  809. trackStopTime({whichCastMember}, whichTrack)
  810.  
  811. trackStartTime(member {whichCastMember}, whichTrack)
  812.  
  813. trackType(member {whichCastMember}, whichTrack)
  814.  
  815. trackCount(member {whichCastMember})
  816.  
  817. the video of member {whichCastMember}
  818.  
  819. the timeScale of member {whichCastMember}
  820.  
  821. the sound of member {whichCastMember}
  822.  
  823. the pausedAtStart of member {whichCastMember}
  824.  
  825. the loop of member {whichCastMember}
  826.  
  827. the frameRate of member {whichCastMember}
  828.  
  829. the duration of member {whichCastMember}
  830.  
  831. the directToStage of member {whichCastMember}
  832.  
  833. the digitalVideoType of member {whichCastMember}
  834.  
  835. the crop of member {whichCastMember}
  836.  
  837. the controller of member {whichCastMember}
  838.  
  839. the center of member {whichCastMember}
  840.  
  841. the videoForWindowsPresent
  842.  
  843. the quickTimePresent
  844.  
  845. the digitalVideoTimeScale
  846.  
  847. the mostRecentCuePoint
  848.  
  849. isPastCuePoint({whichChannel}, cuePointID)
  850.  
  851. on cuePassed whichChannel, cuePointNumber, cuePointName
  852.   {}
  853. end cuePassed
  854.  
  855. the cuePointTimes of member {whichCastMember}
  856.  
  857. the cuePointNames of member {whichCastMember}
  858.  
  859. zoomBox {startSprite}, endSprite
  860.  
  861. the transitionType of member {whichCastMember}
  862.  
  863. the duration of member {whichCastMember}
  864.  
  865. the chunkSize of member {whichCastMember}
  866.  
  867. the changeArea of member {whichCastMember}
  868.  
  869. the wordWrap of member {whichCastMember}
  870.  
  871. the text of member {whichCastMember}
  872.  
  873. the scrollTop of member {whichCastMember}
  874.  
  875. the pageHeight of member {whichCastMember)
  876.  
  877. the margin of member {whichCastMember}
  878.  
  879. the lineHeight of member {whichCastMember}
  880.  
  881. the lineCount of member {whichCastMember}
  882.  
  883. the fontStyle of member {whichCastMember}
  884.  
  885. the fontSize of member {whichCastMember}
  886.  
  887. the font of member {whichCastMember}
  888.  
  889. the editable of member {whichCastMember}
  890.  
  891. the dropshadow of member {whichCastMember}
  892.  
  893. the boxType of member {whichCastMember}
  894.  
  895. the boxDropShadow of member {whichCastMember}
  896.  
  897. the border of member {whichCastMember}
  898.  
  899. the autoTab of member {whichCastMember}
  900.  
  901. the alignment of member {whichCastMember}
  902.  
  903. the selStart
  904.  
  905. the selEnd
  906.  
  907. scrollByPage member {whichCastMember}, amount
  908.  
  909. scrollByLine member {whichCastMember}, amount
  910.  
  911. locVToLinePos(member {whichCastMember}, locv)
  912.  
  913. locToCharPos(member {whichCastMember}, location)
  914.  
  915. linePosToLocV(member {whichCastMember}, lineNumber)
  916.  
  917. lineheight({whichCastMember}, lineNumber)
  918.  
  919. charPosToLoc(member {whichCastMember}, nthCharacter)
  920.  
  921. the width of member {whichCastMember}
  922.  
  923. the type of member {whichCastMember}
  924.  
  925. the size of member {whichCastMember}
  926.  
  927. the scriptType of member {whichCastMember}
  928.  
  929. the scriptText of member {whichCastMember}
  930.  
  931. the scriptsEnabled of member {whichCastMember}
  932.  
  933. the regPoint of member {whichCastMember}
  934.  
  935. the rect of member {whichCastMember}
  936.  
  937. the picture of member {whichCastMember}
  938.  
  939. the palette of member {whichCastMember}
  940.  
  941. the paletteRef of member {whichCastMember}
  942.  
  943. the number of member {whichCastMember}
  944.  
  945. the name of member {whichCastMember}
  946.  
  947. the modified of member {whichCastMember}
  948.  
  949. the media of member {whichCastMember}
  950.  
  951. the height of member {whichCastMember}
  952.  
  953. the forecolor of member {whichCastMember}
  954.  
  955. the fileName of member {whichCastMember}
  956.  
  957. the depth of member {whichMember}
  958.  
  959. the backColor of member {whichCastMember}
  960.  
  961. new({type})
  962.  
  963. move member {whichCastMember}, member whichLocation
  964.  
  965. member {whichCastMember}
  966.  
  967. importFileInto member {whichCastMember}, fileName
  968.  
  969. erase member {whichCastMember}
  970.  
  971. duplicate member {original}, new
  972.  
  973. save castLib {whichcast}
  974.  
  975. preloadMode of castLib {whichcast}
  976.  
  977. the selection of castLib {whichcast}
  978.  
  979. the number of members of castLib {whichCast}
  980.  
  981. the number of members
  982.  
  983. the number of castLibs
  984.  
  985. the number of castLib {whichcast}
  986.  
  987. the name of castLib {whichcast}
  988.  
  989. findEmpty(member {index})
  990.  
  991. the fileName of castLib {whichcast}
  992.  
  993. castLib {whichcast}
  994.  
  995. the activeCastLib
  996.  
  997. the idleReadChunkSize
  998.  
  999. the idleLoadTag
  1000.  
  1001. the idleLoadPeriod
  1002.  
  1003. the idleLoadMode
  1004.  
  1005. idleLoadDone({loadtag})
  1006.  
  1007. the idleHandlerPeriod
  1008.  
  1009. finishIdleLoad {loadtag}
  1010.  
  1011. cancelIdleLoad {loadtag}
  1012.  
  1013. unload {fromFramenum}, toFramenum
  1014.  
  1015. unloadMovie {whichMovie}
  1016.  
  1017. unloadMember member {fromCastMember}, toCastMember
  1018.  
  1019. ramNeeded({firstFrame}, lastFrame)
  1020.  
  1021. the purgePriority of member {whichCastmember}
  1022.  
  1023. the preLoad of member {whichCastmember}
  1024.  
  1025. preLoadMember member {fromCastMember}, toCastMember
  1026.  
  1027. preLoad {fromFrame}, toFrame
  1028.  
  1029. the preLoadRAM
  1030.  
  1031. preLoadMovie {whichMovie}
  1032.  
  1033. the preLoadMode of castLib {whichCast}
  1034.  
  1035. the preLoadEventAbort
  1036.  
  1037. the movieFileSize
  1038.  
  1039. the movieFileFreeSize
  1040.  
  1041. the memorySize
  1042.  
  1043. the mediaReady of member {whichCastMember}
  1044.  
  1045. the loaded of member {whichCastmember}
  1046.  
  1047. the freeBytes
  1048.  
  1049. the freeBlock
  1050.  
  1051. frameReady({whichFrame})
  1052.  
  1053. version
  1054.  
  1055. shutDown
  1056.  
  1057. the runMode
  1058.  
  1059. the romanLingo
  1060.  
  1061. restart
  1062.  
  1063. quit
  1064.  
  1065. printFrom {fromFrame}, toFrame, reduction
  1066.  
  1067. the platform
  1068.  
  1069. pasteClipBoardInto member {whichCastMember}
  1070.  
  1071. the multiSound
  1072.  
  1073. mci {mciString}
  1074.  
  1075. the maxInteger
  1076.  
  1077. the machineType
  1078.  
  1079. the fullColorPermit
  1080.  
  1081. the floatPrecision
  1082.  
  1083. the deskTopRectList
  1084.  
  1085. the cpuHogTicks
  1086.  
  1087. the colorDepth
  1088.  
  1089. the beepOn
  1090.  
  1091. beep {numberOfTimes}
  1092.  
  1093. the stillDown
  1094.  
  1095. rollOver({whichSprite})
  1096.  
  1097. the rightMouseUp
  1098.  
  1099. the rightMouseDown
  1100.  
  1101. the mouseWord
  1102.  
  1103. the mouseV
  1104.  
  1105. the mouseUpScript
  1106.  
  1107. the mouseUp
  1108.  
  1109. the mouseMember
  1110.  
  1111. the mouseLine
  1112.  
  1113. the mouseItem
  1114.  
  1115. the mouseH
  1116.  
  1117. the mouseDownScript
  1118.  
  1119. the mouseDown
  1120.  
  1121. the mouseChar
  1122.  
  1123. the lastRoll
  1124.  
  1125. the lastClick
  1126.  
  1127. the emulateMultiButtonMouse
  1128.  
  1129. the doubleClick
  1130.  
  1131. the clickOn
  1132.  
  1133. the clickLoc
  1134.  
  1135. on rightMouseUp
  1136.   {}
  1137. end rightMouseUp
  1138.  
  1139. on rightMouseDown
  1140.   {}
  1141. end rightMouseDown
  1142.  
  1143. on mouseWithin
  1144.   {}
  1145. end mouseWithin
  1146.  
  1147. on mouseUpOutside
  1148.   {}
  1149. end mouseUpOutside
  1150.  
  1151. on mouseUp
  1152.   {}
  1153. end mouseUp
  1154.  
  1155. on mouseLeave
  1156.   {}
  1157. end mouseLeave
  1158.  
  1159. on mouseEnter
  1160.   {}
  1161. end mouseEnter
  1162.  
  1163. on mouseDown
  1164.   {}
  1165. end mouseDown
  1166.  
  1167. the timer
  1168.  
  1169. on timeout
  1170.  
  1171. the timeoutScript
  1172.  
  1173. the timeoutPlay
  1174.  
  1175. the timeoutMouse
  1176.  
  1177. the timeoutLength
  1178.  
  1179. the timeoutLapsed
  1180.  
  1181. the timeoutKeyDown
  1182.  
  1183. startTimer
  1184.  
  1185. the shiftDown
  1186.  
  1187. the optionDown
  1188.  
  1189. on keyUp
  1190.   {}
  1191. end keyUp
  1192.  
  1193. on keyDown
  1194.   {}
  1195. end keyDown
  1196.  
  1197. the lastKey
  1198.  
  1199. the lastEvent
  1200.  
  1201. the keyUpScript
  1202.  
  1203. the keyPressed
  1204.  
  1205. the keyDownScript
  1206.  
  1207. the keyCode
  1208.  
  1209. the key
  1210.  
  1211. the exitLock
  1212.  
  1213. the cursor of sprite {whichSprite}
  1214.  
  1215. cursor {whichCursor}
  1216.  
  1217. the controlDown
  1218.  
  1219. the commandDown
  1220.  
  1221. the updateMovieEnabled
  1222.  
  1223. the updateLock
  1224.  
  1225. the traceLogFile
  1226.  
  1227. the traceLoad
  1228.  
  1229. the trace
  1230.  
  1231. the switchColorDepth
  1232.  
  1233. the stageTop
  1234.  
  1235. the stageRight
  1236.  
  1237. the stageLeft
  1238.  
  1239. the stageColor
  1240.  
  1241. the stageBottom
  1242.  
  1243. the stage
  1244.  
  1245. the scoreSelection
  1246.  
  1247. the score 
  1248.  
  1249. the paletteMapping
  1250.  
  1251. the movieName
  1252.  
  1253. the lastFrame
  1254.  
  1255. the labelList
  1256.  
  1257. the fixStageSize
  1258.  
  1259. the centerStage
  1260.  
  1261. saveMovie
  1262.  
  1263. on stopMovie
  1264.   {}
  1265. end stopMovie
  1266.  
  1267. on startMovie
  1268.   {}
  1269. end startMovie
  1270.  
  1271. on prepareMovie
  1272.   {}
  1273. end prepareMovie
  1274.  
  1275. HMStoFrames({hms}, tempo, dropFrame, fractionalSeconds)
  1276.  
  1277. framesToHMS({frames}, tempo, dropFrame, fractionalSeconds)
  1278.  
  1279. proxyserver({})
  1280.  
  1281. clearCache
  1282.  
  1283. cacheSize({})
  1284.  
  1285. cacheDocVerify({})
  1286.  
  1287. browserName({})
  1288.  
  1289. setPref {fileName}, string
  1290.  
  1291. getPref({fileName})
  1292.  
  1293. externalParamValue({param})
  1294.  
  1295. externalParamName({param})
  1296.  
  1297. externalParamCount()
  1298.  
  1299. externalEvent "{string}"
  1300.  
  1301. tellStreamStatus
  1302.  
  1303. on streamStatus
  1304.  
  1305. the runMode
  1306.  
  1307. preloadNetThing {url}
  1308.  
  1309. netTextResult({netID})
  1310.  
  1311. netStatus {msg}
  1312.  
  1313. the netPresent
  1314.  
  1315. netMIME({netID})
  1316.  
  1317. netLastModDate({netID})
  1318.  
  1319. netError()
  1320.  
  1321. netDone({netID})
  1322.  
  1323. netAbort({netID})
  1324.  
  1325. the mediaReady of member {whichCastMember}
  1326.  
  1327. gotoNetPage {url},target
  1328.  
  1329. gotoNetMovie {url}
  1330.  
  1331. getNetText {url}
  1332.  
  1333. getLatestNetID()
  1334.  
  1335. frameReady({whichFrame})
  1336.  
  1337. downloadNetThing {url},file
  1338.  
  1339. play done
  1340.  
  1341. play movie {whichMovie}
  1342.  
  1343. play frame {whichFrame} of movie whichMovie
  1344.  
  1345. play frame {whichFrame}
  1346.  
  1347. the pauseState
  1348.  
  1349. pause
  1350.  
  1351. marker({whichMarker})
  1352.  
  1353. go to movie {whichMovie}
  1354.  
  1355. go to frame {whichFrame}  of movie whichMovie
  1356.  
  1357. go to frame {whichFrame} 
  1358.  
  1359. go previous
  1360.  
  1361. go next
  1362.  
  1363. go loop
  1364.  
  1365. delay {numberOfTicks}
  1366.  
  1367. continue
  1368.  
  1369.